home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / gnuish / flex251s / parse.c < prev    next >
C/C++ Source or Header  |  1995-04-12  |  47KB  |  1,787 lines

  1.  
  2. /*  A Bison parser, made from parse.y
  3.  with Bison version GNU/Andrew Bison version A2.2
  4.   */
  5.  
  6. #define YYBISON 1  /* Identify Bison output.  */
  7.  
  8. #define    CHAR    258
  9. #define    NUMBER    259
  10. #define    SECTEND    260
  11. #define    SCDECL    261
  12. #define    XSCDECL    262
  13. #define    NAME    263
  14. #define    PREVCCL    264
  15. #define    EOF_OP    265
  16. #define    OPTION_OP    266
  17. #define    OPT_OUTFILE    267
  18. #define    OPT_PREFIX    268
  19. #define    OPT_YYCLASS    269
  20. #define    CCE_ALNUM    270
  21. #define    CCE_ALPHA    271
  22. #define    CCE_BLANK    272
  23. #define    CCE_CNTRL    273
  24. #define    CCE_DIGIT    274
  25. #define    CCE_GRAPH    275
  26. #define    CCE_LOWER    276
  27. #define    CCE_PRINT    277
  28. #define    CCE_PUNCT    278
  29. #define    CCE_SPACE    279
  30. #define    CCE_UPPER    280
  31. #define    CCE_XDIGIT    281
  32.  
  33.  
  34. /*-
  35.  * Copyright (c) 1990 The Regents of the University of California.
  36.  * All rights reserved.
  37.  *
  38.  * This code is derived from software contributed to Berkeley by
  39.  * Vern Paxson.
  40.  * 
  41.  * The United States Government has rights in this work pursuant
  42.  * to contract no. DE-AC03-76SF00098 between the United States
  43.  * Department of Energy and the University of California.
  44.  *
  45.  * Redistribution and use in source and binary forms are permitted provided
  46.  * that: (1) source distributions retain this entire copyright notice and
  47.  * comment, and (2) distributions including binaries display the following
  48.  * acknowledgement:  ``This product includes software developed by the
  49.  * University of California, Berkeley and its contributors'' in the
  50.  * documentation or other materials provided with the distribution and in
  51.  * all advertising materials mentioning features or use of this software.
  52.  * Neither the name of the University nor the names of its contributors may
  53.  * be used to endorse or promote products derived from this software without
  54.  * specific prior written permission.
  55.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  56.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  57.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  58.  */
  59.  
  60. /* $Header: /home/daffy/u0/vern/flex/RCS/parse.y,v 2.26 95/03/05 20:37:32 vern Exp $ */
  61.  
  62.  
  63. /* Some versions of bison are broken in that they use alloca() but don't
  64.  * declare it properly.  The following is the patented (just kidding!)
  65.  * #ifdef chud to fix the problem, courtesy of Francois Pinard.
  66.  */
  67. #ifdef YYBISON
  68. /* AIX requires this to be the first thing in the file.  */
  69. #ifdef __GNUC__
  70. #define alloca __builtin_alloca
  71. #else /* not __GNUC__ */
  72. #if HAVE_ALLOCA_H
  73. #include <alloca.h>
  74. #else /* not HAVE_ALLOCA_H */
  75. #ifdef _AIX
  76.  #pragma alloca
  77. #else /* not _AIX */
  78. #ifdef __hpux
  79. void *alloca ();
  80. #else /* not __hpux */
  81. #ifdef __TURBOC__
  82. #include <malloc.h>
  83. #else
  84. char *alloca ();
  85. #endif /* not __TURBOC__ */
  86. #endif /* not __hpux */
  87. #endif /* not _AIX */
  88. #endif /* not HAVE_ALLOCA_H */
  89. #endif /* not __GNUC__ */
  90. #endif /* YYBISON */
  91.  
  92. /* Bletch, ^^^^ that was ugly! */
  93.  
  94.  
  95. #include "flexdef.h"
  96.  
  97. int pat, scnum, eps, headcnt, trailcnt, anyccl, lastchar, i, rulelen;
  98. int trlcontxt, xcluflg, currccl, cclsorted, varlength, variable_trail_rule;
  99.  
  100. int *scon_stk;
  101. int scon_stk_ptr;
  102.  
  103. static int madeany = false;  /* whether we've made the '.' character class */
  104. int previous_continued_action;    /* whether the previous rule's action was '|' */
  105.  
  106. /* Expand a POSIX character class expression. */
  107. #define CCL_EXPR(func) \
  108.     { \
  109.     int c; \
  110.     for ( c = 0; c < csize; ++c ) \
  111.         if ( isascii(c) && func(c) ) \
  112.             ccladd( currccl, c ); \
  113.     }
  114.  
  115. /* While POSIX defines isblank(), it's not ANSI C. */
  116. #define IS_BLANK(c) ((c) == ' ' || (c) == '\t')
  117.  
  118. /* On some over-ambitious machines, such as DEC Alpha's, the default
  119.  * token type is "long" instead of "int"; this leads to problems with
  120.  * declaring yylval in flexdef.h.  But so far, all the yacc's I've seen
  121.  * wrap their definitions of YYSTYPE with "#ifndef YYSTYPE"'s, so the
  122.  * following should ensure that the default token type is "int".
  123.  */
  124. #define YYSTYPE int
  125.  
  126. #ifndef YYSTYPE
  127. #define YYSTYPE int
  128. #endif
  129. #include <stdio.h>
  130.  
  131. #ifndef __cplusplus
  132. #ifndef __STDC__
  133. #define const
  134. #endif
  135. #endif
  136.  
  137.  
  138.  
  139. #define    YYFINAL        107
  140. #define    YYFLAG        -32768
  141. #define    YYNTBASE    48
  142.  
  143. #define YYTRANSLATE(x) ((unsigned)(x) <= 281 ? yytranslate[x] : 73)
  144.  
  145. static const char yytranslate[] = {     0,
  146.      2,     2,     2,     2,     2,     2,     2,     2,     2,    28,
  147.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  148.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  149.      2,     2,     2,    42,     2,    36,     2,     2,     2,    43,
  150.     44,    34,    39,    35,    47,    41,    38,     2,     2,     2,
  151.      2,     2,     2,     2,     2,     2,     2,     2,     2,    32,
  152.     27,    33,    40,     2,     2,     2,     2,     2,     2,     2,
  153.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  154.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  155.     45,     2,    46,    31,     2,     2,     2,     2,     2,     2,
  156.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  157.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  158.      2,     2,    29,    37,    30,     2,     2,     2,     2,     2,
  159.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  160.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  161.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  162.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  163.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  164.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  165.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  166.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  167.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  168.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  169.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  170.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  171.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  172.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  173.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  174.     26
  175. };
  176.  
  177. #if YYDEBUG != 0
  178. static const short yyprhs[] = {     0,
  179.      0,     6,     7,    11,    14,    15,    17,    19,    21,    23,
  180.     26,    28,    30,    33,    36,    37,    41,    45,    49,    55,
  181.     61,    62,    63,    66,    68,    70,    72,    73,    78,    82,
  182.     83,    87,    89,    91,    93,    96,   100,   103,   105,   109,
  183.    111,   114,   117,   119,   122,   125,   128,   135,   141,   146,
  184.    148,   150,   152,   156,   160,   162,   166,   171,   176,   179,
  185.    182,   183,   185,   187,   189,   191,   193,   195,   197,   199,
  186.    201,   203,   205,   207,   210
  187. };
  188.  
  189. static const short yyrhs[] = {    49,
  190.     50,    51,    57,    58,     0,     0,    50,    52,    53,     0,
  191.     50,    54,     0,     0,     1,     0,     5,     0,     6,     0,
  192.      7,     0,    53,     8,     0,     8,     0,     1,     0,    11,
  193.     55,     0,    55,    56,     0,     0,    12,    27,     8,     0,
  194.     13,    27,     8,     0,    14,    27,     8,     0,    57,    61,
  195.     58,    59,    28,     0,    57,    61,    29,    57,    30,     0,
  196.      0,     0,    31,    64,     0,    64,     0,    10,     0,     1,
  197.      0,     0,    32,    60,    62,    33,     0,    32,    34,    33,
  198.      0,     0,    62,    35,    63,     0,    63,     0,     1,     0,
  199.      8,     0,    66,    65,     0,    66,    65,    36,     0,    65,
  200.     36,     0,    65,     0,    65,    37,    67,     0,    67,     0,
  201.     65,    38,     0,    67,    68,     0,    68,     0,    68,    34,
  202.      0,    68,    39,     0,    68,    40,     0,    68,    29,     4,
  203.     35,     4,    30,     0,    68,    29,     4,    35,    30,     0,
  204.     68,    29,     4,    30,     0,    41,     0,    69,     0,     9,
  205.      0,    42,    72,    42,     0,    43,    65,    44,     0,     3,
  206.      0,    45,    70,    46,     0,    45,    31,    70,    46,     0,
  207.     70,     3,    47,     3,     0,    70,     3,     0,    70,    71,
  208.      0,     0,    15,     0,    16,     0,    17,     0,    18,     0,
  209.     19,     0,    20,     0,    21,     0,    22,     0,    23,     0,
  210.     24,     0,    25,     0,    26,     0,    72,     3,     0,     0
  211. };
  212.  
  213. #endif
  214.  
  215. #if YYDEBUG != 0
  216. static const short yyrline[] = { 0,
  217.    105,   134,   142,   143,   144,   145,   149,   157,   160,   164,
  218.    167,   170,   174,   177,   178,   181,   186,   188,   192,   194,
  219.    196,   199,   212,   248,   272,   295,   299,   303,   306,   323,
  220.    327,   329,   331,   335,   358,   413,   416,   459,   477,   483,
  221.    488,   515,   523,   527,   534,   540,   546,   574,   588,   607,
  222.    629,   647,   654,   657,   660,   671,   674,   681,   709,   720,
  223.    727,   735,   736,   737,   738,   739,   740,   741,   742,   743,
  224.    744,   745,   751,   754,   764
  225. };
  226. #endif
  227.  
  228.  
  229. #if YYDEBUG != 0
  230.  
  231. static const char * const yytname[] = {   "$","error","$illegal.","CHAR","NUMBER",
  232. "SECTEND","SCDECL","XSCDECL","NAME","PREVCCL","EOF_OP","OPTION_OP","OPT_OUTFILE",
  233. "OPT_PREFIX","OPT_YYCLASS","CCE_ALNUM","CCE_ALPHA","CCE_BLANK","CCE_CNTRL","CCE_DIGIT",
  234. "CCE_GRAPH","CCE_LOWER","CCE_PRINT","CCE_PUNCT","CCE_SPACE","CCE_UPPER","CCE_XDIGIT",
  235. "'='","'\\n'","'{'","'}'","'^'","'<'","'>'","'*'","','","'$'","'|'","'/'","'+'",
  236. "'?'","'.'","'\"'","'('","')'","'['","']'","'-'","goal","initlex","sect1","sect1end",
  237. "startconddecl","namelist1","options","optionlist","option","sect2","initforrule",
  238. "flexrule","scon_stk_ptr","scon","namelist2","sconname","rule","re","re2","series",
  239. "singleton","fullccl","ccl","ccl_expr","string", NULL
  240. };
  241. #endif
  242.  
  243. static const short yyr1[] = {     0,
  244.     48,    49,    50,    50,    50,    50,    51,    52,    52,    53,
  245.     53,    53,    54,    55,    55,    56,    56,    56,    57,    57,
  246.     57,    58,    59,    59,    59,    59,    60,    61,    61,    61,
  247.     62,    62,    62,    63,    64,    64,    64,    64,    65,    65,
  248.     66,    67,    67,    68,    68,    68,    68,    68,    68,    68,
  249.     68,    68,    68,    68,    68,    69,    69,    70,    70,    70,
  250.     70,    71,    71,    71,    71,    71,    71,    71,    71,    71,
  251.     71,    71,    71,    72,    72
  252. };
  253.  
  254. static const short yyr2[] = {     0,
  255.      5,     0,     3,     2,     0,     1,     1,     1,     1,     2,
  256.      1,     1,     2,     2,     0,     3,     3,     3,     5,     5,
  257.      0,     0,     2,     1,     1,     1,     0,     4,     3,     0,
  258.      3,     1,     1,     1,     2,     3,     2,     1,     3,     1,
  259.      2,     2,     1,     2,     2,     2,     6,     5,     4,     1,
  260.      1,     1,     3,     3,     1,     3,     4,     4,     2,     2,
  261.      0,     1,     1,     1,     1,     1,     1,     1,     1,     1,
  262.      1,     1,     1,     2,     0
  263. };
  264.  
  265. static const short yydefact[] = {     2,
  266.      0,     6,     0,     7,     8,     9,    15,    21,     0,     4,
  267.     13,    30,    12,    11,     3,     0,     0,     0,    14,    27,
  268.      1,    22,    10,     0,     0,     0,     0,     0,    21,     0,
  269.     16,    17,    18,    29,    33,    34,     0,    32,    30,    26,
  270.     55,    52,    25,     0,    50,    75,     0,    61,     0,    24,
  271.     38,     0,    40,    43,    51,    28,     0,    20,    23,     0,
  272.      0,    61,     0,    19,    37,     0,    41,    35,    42,     0,
  273.     44,    45,    46,    31,    74,    53,    54,     0,    59,    62,
  274.     63,    64,    65,    66,    67,    68,    69,    70,    71,    72,
  275.     73,    56,    60,    39,    36,     0,    57,     0,    49,     0,
  276.     58,     0,    48,    47,     0,     0,     0
  277. };
  278.  
  279. static const short yydefgoto[] = {   105,
  280.      1,     3,     8,     9,    15,    10,    11,    19,    12,    21,
  281.     49,    28,    22,    37,    38,    50,    51,    52,    53,    54,
  282.     55,    63,    93,    60
  283. };
  284.  
  285. static const short yypact[] = {-32768,
  286.     78,-32768,    81,-32768,-32768,-32768,-32768,-32768,     6,-32768,
  287.     -2,     5,-32768,-32768,    -7,   -14,     1,     9,-32768,    28,
  288. -32768,    14,-32768,    55,    65,    74,    57,    30,-32768,    -1,
  289. -32768,-32768,-32768,-32768,-32768,-32768,    58,-32768,    44,-32768,
  290. -32768,-32768,-32768,    24,-32768,-32768,    24,    63,    69,-32768,
  291.     23,    24,    24,    41,-32768,-32768,    90,-32768,-32768,    26,
  292.     27,-32768,     0,-32768,-32768,    24,-32768,    59,    41,    95,
  293. -32768,-32768,-32768,-32768,-32768,-32768,-32768,    32,    53,-32768,
  294. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
  295. -32768,-32768,-32768,    24,-32768,     4,-32768,    98,-32768,     2,
  296. -32768,    72,-32768,-32768,   103,   104,-32768
  297. };
  298.  
  299. static const short yypgoto[] = {-32768,
  300. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,    76,    84,
  301. -32768,-32768,-32768,-32768,    50,    64,    25,-32768,    43,   -49,
  302. -32768,    48,-32768,-32768
  303. };
  304.  
  305.  
  306. #define    YYLAST        110
  307.  
  308.  
  309. static const short yytable[] = {    40,
  310.     23,    41,    79,    69,   -22,   102,    13,    42,    43,    16,
  311.     17,    18,    24,    14,    80,    81,    82,    83,    84,    85,
  312.     86,    87,    88,    89,    90,    91,    41,    25,    75,    44,
  313.     35,   103,    42,    99,    79,    26,    20,    36,   100,    45,
  314.     46,    47,    29,    48,    69,    92,    80,    81,    82,    83,
  315.     84,    85,    86,    87,    88,    89,    90,    91,    65,    66,
  316.     67,    27,    31,    66,    45,    46,    47,    76,    48,    70,
  317.     77,    61,    32,    58,    71,    20,    68,    97,     2,    72,
  318.     73,    33,    -5,    -5,    -5,     4,     5,     6,    -5,    34,
  319.     56,     7,    57,    62,    95,    66,    64,    36,    96,    98,
  320.    101,   104,   106,   107,    39,    30,    74,    59,    94,    78
  321. };
  322.  
  323. static const short yycheck[] = {     1,
  324.      8,     3,     3,    53,     0,     4,     1,     9,    10,    12,
  325.     13,    14,    27,     8,    15,    16,    17,    18,    19,    20,
  326.     21,    22,    23,    24,    25,    26,     3,    27,     3,    31,
  327.      1,    30,     9,    30,     3,    27,    32,     8,    35,    41,
  328.     42,    43,    29,    45,    94,    46,    15,    16,    17,    18,
  329.     19,    20,    21,    22,    23,    24,    25,    26,    36,    37,
  330.     38,    34,     8,    37,    41,    42,    43,    42,    45,    29,
  331.     44,    47,     8,    30,    34,    32,    52,    46,     1,    39,
  332.     40,     8,     5,     6,     7,     5,     6,     7,    11,    33,
  333.     33,    11,    35,    31,    36,    37,    28,     8,     4,    47,
  334.      3,    30,     0,     0,    29,    22,    57,    44,    66,    62
  335. };
  336. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  337.  
  338.  
  339. /* Skeleton output parser for bison,
  340.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  341.  
  342.    This program is free software; you can redistribute it and/or modify
  343.    it under the terms of the GNU General Public License as published by
  344.    the Free Software Foundation; either version 1, or (at your option)
  345.    any later version.
  346.  
  347.    This program is distributed in the hope that it will be useful,
  348.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  349.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  350.    GNU General Public License for more details.
  351.  
  352.    You should have received a copy of the GNU General Public License
  353.    along with this program; if not, write to the Free Software
  354.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  355.  
  356.  
  357. #ifndef alloca
  358. #ifdef __GNUC__
  359. #define alloca __builtin_alloca
  360. #else /* not GNU C.  */
  361. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  362. #include <alloca.h>
  363. #else /* not sparc */
  364. #if defined (MSDOS) && !defined (__TURBOC__)
  365. #include <malloc.h>
  366. #else /* not MSDOS, or __TURBOC__ */
  367. #if defined(_AIX)
  368. #include <malloc.h>
  369.  #pragma alloca
  370. #else /* not MSDOS, __TURBOC__, or _AIX */
  371. #ifdef __hpux
  372. #ifdef __cplusplus
  373. extern "C" {
  374. void *alloca (unsigned int);
  375. };
  376. #else /* not __cplusplus */
  377. void *alloca ();
  378. #endif /* not __cplusplus */
  379. #endif /* __hpux */
  380. #endif /* not _AIX */
  381. #endif /* not MSDOS, or __TURBOC__ */
  382. #endif /* not sparc.  */
  383. #endif /* not GNU C.  */
  384. #endif /* alloca not defined.  */
  385.  
  386. /* This is the parser code that is written into each bison parser
  387.   when the %semantic_parser declaration is not specified in the grammar.
  388.   It was written by Richard Stallman by simplifying the hairy parser
  389.   used when %semantic_parser is specified.  */
  390.  
  391. /* Note: there must be only one dollar sign in this file.
  392.    It is replaced by the list of actions, each action
  393.    as one case of the switch.  */
  394.  
  395. #define yyerrok        (yyerrstatus = 0)
  396. #define yyclearin    (yychar = YYEMPTY)
  397. #define YYEMPTY        -2
  398. #define YYEOF        0
  399. #define YYACCEPT    return(0)
  400. #define YYABORT     return(1)
  401. #define YYERROR        goto yyerrlab1
  402. /* Like YYERROR except do call yyerror.
  403.    This remains here temporarily to ease the
  404.    transition to the new meaning of YYERROR, for GCC.
  405.    Once GCC version 2 has supplanted version 1, this can go.  */
  406. #define YYFAIL        goto yyerrlab
  407. #define YYRECOVERING()  (!!yyerrstatus)
  408. #define YYBACKUP(token, value) \
  409. do                                \
  410.   if (yychar == YYEMPTY && yylen == 1)                \
  411.     { yychar = (token), yylval = (value);            \
  412.       yychar1 = YYTRANSLATE (yychar);                \
  413.       YYPOPSTACK;                        \
  414.       goto yybackup;                        \
  415.     }                                \
  416.   else                                \
  417.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  418. while (0)
  419.  
  420. #define YYTERROR    1
  421. #define YYERRCODE    256
  422.  
  423. #ifndef YYPURE
  424. #define YYLEX        yylex()
  425. #endif
  426.  
  427. #ifdef YYPURE
  428. #ifdef YYLSP_NEEDED
  429. #define YYLEX        yylex(&yylval, &yylloc)
  430. #else
  431. #define YYLEX        yylex(&yylval)
  432. #endif
  433. #endif
  434.  
  435. /* If nonreentrant, generate the variables here */
  436.  
  437. #ifndef YYPURE
  438.  
  439. int    yychar;            /*  the lookahead symbol        */
  440. YYSTYPE    yylval;            /*  the semantic value of the        */
  441.                 /*  lookahead symbol            */
  442.  
  443. #ifdef YYLSP_NEEDED
  444. YYLTYPE yylloc;            /*  location data for the lookahead    */
  445.                 /*  symbol                */
  446. #endif
  447.  
  448. int yynerrs;            /*  number of parse errors so far       */
  449. #endif  /* not YYPURE */
  450.  
  451. #if YYDEBUG != 0
  452. int yydebug;            /*  nonzero means print parse trace    */
  453. /* Since this is uninitialized, it does not stop multiple parsers
  454.    from coexisting.  */
  455. #endif
  456.  
  457. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  458.  
  459. #ifndef    YYINITDEPTH
  460. #define YYINITDEPTH 200
  461. #endif
  462.  
  463. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  464.     (effective only if the built-in stack extension method is used).  */
  465.  
  466. #if YYMAXDEPTH == 0
  467. #undef YYMAXDEPTH
  468. #endif
  469.  
  470. #ifndef YYMAXDEPTH
  471. #define YYMAXDEPTH 10000
  472. #endif
  473.  
  474. /* Prevent warning if -Wstrict-prototypes.  */
  475. #ifdef __GNUC__
  476. int yyparse (void);
  477. #endif
  478.  
  479. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  480. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  481. #else                /* not GNU C or C++ */
  482. #ifndef __cplusplus
  483.  
  484. /* This is the most reliable way to avoid incompatibilities
  485.    in available built-in functions on various systems.  */
  486. static void
  487. __yy_bcopy (from, to, count)
  488.      char *from;
  489.      char *to;
  490.      int count;
  491. {
  492.   register char *f = from;
  493.   register char *t = to;
  494.   register int i = count;
  495.  
  496.   while (i-- > 0)
  497.     *t++ = *f++;
  498. }
  499.  
  500. #else /* __cplusplus */
  501.  
  502. /* This is the most reliable way to avoid incompatibilities
  503.    in available built-in functions on various systems.  */
  504. static void
  505. __yy_bcopy (char *from, char *to, int count)
  506. {
  507.   register char *f = from;
  508.   register char *t = to;
  509.   register int i = count;
  510.  
  511.   while (i-- > 0)
  512.     *t++ = *f++;
  513. }
  514.  
  515. #endif
  516. #endif
  517.  
  518.  
  519. int
  520. yyparse()
  521. {
  522.   register int yystate;
  523.   register int yyn;
  524.   register short *yyssp;
  525.   register YYSTYPE *yyvsp;
  526.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  527.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  528.  
  529.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  530.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  531.  
  532.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  533.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  534.  
  535. #ifdef YYLSP_NEEDED
  536.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  537.   YYLTYPE *yyls = yylsa;
  538.   YYLTYPE *yylsp;
  539.  
  540. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  541. #else
  542. #define YYPOPSTACK   (yyvsp--, yyssp--)
  543. #endif
  544.  
  545.   int yystacksize = YYINITDEPTH;
  546.  
  547. #ifdef YYPURE
  548.   int yychar;
  549.   YYSTYPE yylval;
  550.   int yynerrs;
  551. #ifdef YYLSP_NEEDED
  552.   YYLTYPE yylloc;
  553. #endif
  554. #endif
  555.  
  556.   YYSTYPE yyval;        /*  the variable used to return        */
  557.                 /*  semantic values from the action    */
  558.                 /*  routines                */
  559.  
  560.   int yylen;
  561.  
  562. #if YYDEBUG != 0
  563.   if (yydebug)
  564.     fprintf(stderr, "Starting parse\n");
  565. #endif
  566.  
  567.   yystate = 0;
  568.   yyerrstatus = 0;
  569.   yynerrs = 0;
  570.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  571.  
  572.   /* Initialize stack pointers.
  573.      Waste one element of value and location stack
  574.      so that they stay on the same level as the state stack.
  575.      The wasted elements are never initialized.  */
  576.  
  577.   yyssp = yyss - 1;
  578.   yyvsp = yyvs;
  579. #ifdef YYLSP_NEEDED
  580.   yylsp = yyls;
  581. #endif
  582.  
  583. /* Push a new state, which is found in  yystate  .  */
  584. /* In all cases, when you get here, the value and location stacks
  585.    have just been pushed. so pushing a state here evens the stacks.  */
  586. yynewstate:
  587.  
  588.   *++yyssp = yystate;
  589.  
  590.   if (yyssp >= yyss + yystacksize - 1)
  591.     {
  592.       /* Give user a chance to reallocate the stack */
  593.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  594.       YYSTYPE *yyvs1 = yyvs;
  595.       short *yyss1 = yyss;
  596. #ifdef YYLSP_NEEDED
  597.       YYLTYPE *yyls1 = yyls;
  598. #endif
  599.  
  600.       /* Get the current used size of the three stacks, in elements.  */
  601.       int size = yyssp - yyss + 1;
  602.  
  603. #ifdef yyoverflow
  604.       /* Each stack pointer address is followed by the size of
  605.      the data in use in that stack, in bytes.  */
  606. #ifdef YYLSP_NEEDED
  607.       /* This used to be a conditional around just the two extra args,
  608.      but that might be undefined if yyoverflow is a macro.  */
  609.       yyoverflow("parser stack overflow",
  610.          &yyss1, size * sizeof (*yyssp),
  611.          &yyvs1, size * sizeof (*yyvsp),
  612.          &yyls1, size * sizeof (*yylsp),
  613.          &yystacksize);
  614. #else
  615.       yyoverflow("parser stack overflow",
  616.          &yyss1, size * sizeof (*yyssp),
  617.          &yyvs1, size * sizeof (*yyvsp),
  618.          &yystacksize);
  619. #endif
  620.  
  621.       yyss = yyss1; yyvs = yyvs1;
  622. #ifdef YYLSP_NEEDED
  623.       yyls = yyls1;
  624. #endif
  625. #else /* no yyoverflow */
  626.       /* Extend the stack our own way.  */
  627.       if (yystacksize >= YYMAXDEPTH)
  628.     {
  629.       yyerror("parser stack overflow");
  630.       return 2;
  631.     }
  632.       yystacksize *= 2;
  633.       if (yystacksize > YYMAXDEPTH)
  634.     yystacksize = YYMAXDEPTH;
  635.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  636.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  637.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  638.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  639. #ifdef YYLSP_NEEDED
  640.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  641.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  642. #endif
  643. #endif /* no yyoverflow */
  644.  
  645.       yyssp = yyss + size - 1;
  646.       yyvsp = yyvs + size - 1;
  647. #ifdef YYLSP_NEEDED
  648.       yylsp = yyls + size - 1;
  649. #endif
  650.  
  651. #if YYDEBUG != 0
  652.       if (yydebug)
  653.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  654. #endif
  655.  
  656.       if (yyssp >= yyss + yystacksize - 1)
  657.     YYABORT;
  658.     }
  659.  
  660. #if YYDEBUG != 0
  661.   if (yydebug)
  662.     fprintf(stderr, "Entering state %d\n", yystate);
  663. #endif
  664.  
  665.   goto yybackup;
  666.  yybackup:
  667.  
  668. /* Do appropriate processing given the current state.  */
  669. /* Read a lookahead token if we need one and don't already have one.  */
  670. /* yyresume: */
  671.  
  672.   /* First try to decide what to do without reference to lookahead token.  */
  673.  
  674.   yyn = yypact[yystate];
  675.   if (yyn == YYFLAG)
  676.     goto yydefault;
  677.  
  678.   /* Not known => get a lookahead token if don't already have one.  */
  679.  
  680.   /* yychar is either YYEMPTY or YYEOF
  681.      or a valid token in external form.  */
  682.  
  683.   if (yychar == YYEMPTY)
  684.     {
  685. #if YYDEBUG != 0
  686.       if (yydebug)
  687.     fprintf(stderr, "Reading a token: ");
  688. #endif
  689.       yychar = YYLEX;
  690.     }
  691.  
  692.   /* Convert token to internal form (in yychar1) for indexing tables with */
  693.  
  694.   if (yychar <= 0)        /* This means end of input. */
  695.     {
  696.       yychar1 = 0;
  697.       yychar = YYEOF;        /* Don't call YYLEX any more */
  698.  
  699. #if YYDEBUG != 0
  700.       if (yydebug)
  701.     fprintf(stderr, "Now at end of input.\n");
  702. #endif
  703.     }
  704.   else
  705.     {
  706.       yychar1 = YYTRANSLATE(yychar);
  707.  
  708. #if YYDEBUG != 0
  709.       if (yydebug)
  710.     {
  711.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  712.       /* Give the individual parser a way to print the precise meaning
  713.          of a token, for further debugging info.  */
  714. #ifdef YYPRINT
  715.       YYPRINT (stderr, yychar, yylval);
  716. #endif
  717.       fprintf (stderr, ")\n");
  718.     }
  719. #endif
  720.     }
  721.  
  722.   yyn += yychar1;
  723.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  724.     goto yydefault;
  725.  
  726.   yyn = yytable[yyn];
  727.  
  728.   /* yyn is what to do for this token type in this state.
  729.      Negative => reduce, -yyn is rule number.
  730.      Positive => shift, yyn is new state.
  731.        New state is final state => don't bother to shift,
  732.        just return success.
  733.      0, or most negative number => error.  */
  734.  
  735.   if (yyn < 0)
  736.     {
  737.       if (yyn == YYFLAG)
  738.     goto yyerrlab;
  739.       yyn = -yyn;
  740.       goto yyreduce;
  741.     }
  742.   else if (yyn == 0)
  743.     goto yyerrlab;
  744.  
  745.   if (yyn == YYFINAL)
  746.     YYACCEPT;
  747.  
  748.   /* Shift the lookahead token.  */
  749.  
  750. #if YYDEBUG != 0
  751.   if (yydebug)
  752.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  753. #endif
  754.  
  755.   /* Discard the token being shifted unless it is eof.  */
  756.   if (yychar != YYEOF)
  757.     yychar = YYEMPTY;
  758.  
  759.   *++yyvsp = yylval;
  760. #ifdef YYLSP_NEEDED
  761.   *++yylsp = yylloc;
  762. #endif
  763.  
  764.   /* count tokens shifted since error; after three, turn off error status.  */
  765.   if (yyerrstatus) yyerrstatus--;
  766.  
  767.   yystate = yyn;
  768.   goto yynewstate;
  769.  
  770. /* Do the default action for the current state.  */
  771. yydefault:
  772.  
  773.   yyn = yydefact[yystate];
  774.   if (yyn == 0)
  775.     goto yyerrlab;
  776.  
  777. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  778. yyreduce:
  779.   yylen = yyr2[yyn];
  780.   if (yylen > 0)
  781.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  782.  
  783. #if YYDEBUG != 0
  784.   if (yydebug)
  785.     {
  786.       int i;
  787.  
  788.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  789.            yyn, yyrline[yyn]);
  790.  
  791.       /* Print the symbols being reduced, and their result.  */
  792.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  793.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  794.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  795.     }
  796. #endif
  797.  
  798.  
  799.   switch (yyn) {
  800.  
  801. case 1:
  802. { /* add default rule */
  803.             int def_rule;
  804.  
  805.             pat = cclinit();
  806.             cclnegate( pat );
  807.  
  808.             def_rule = mkstate( -pat );
  809.  
  810.             /* Remember the number of the default rule so we
  811.              * don't generate "can't match" warnings for it.
  812.              */
  813.             default_rule = num_rules;
  814.  
  815.             finish_rule( def_rule, false, 0, 0 );
  816.  
  817.             for ( i = 1; i <= lastsc; ++i )
  818.                 scset[i] = mkbranch( scset[i], def_rule );
  819.  
  820.             if ( spprdflt )
  821.                 add_action(
  822.                 "YY_FATAL_ERROR( \"flex scanner jammed\" )" );
  823.             else
  824.                 add_action( "ECHO" );
  825.  
  826.             add_action( ";\n\tYY_BREAK\n" );
  827.             ;
  828.     break;}
  829. case 2:
  830. { /* initialize for processing rules */
  831.  
  832.             /* Create default DFA start condition. */
  833.             scinstal( "INITIAL", false );
  834.             ;
  835.     break;}
  836. case 6:
  837. { synerr( "unknown error processing section 1" ); ;
  838.     break;}
  839. case 7:
  840. {
  841.             check_options();
  842.             scon_stk = allocate_integer_array( lastsc + 1 );
  843.             scon_stk_ptr = 0;
  844.             ;
  845.     break;}
  846. case 8:
  847. { xcluflg = false; ;
  848.     break;}
  849. case 9:
  850. { xcluflg = true; ;
  851.     break;}
  852. case 10:
  853. { scinstal( nmstr, xcluflg ); ;
  854.     break;}
  855. case 11:
  856. { scinstal( nmstr, xcluflg ); ;
  857.     break;}
  858. case 12:
  859. { synerr( "bad start condition list" ); ;
  860.     break;}
  861. case 16:
  862. {
  863.             outfilename = copy_string( nmstr );
  864.             did_outfilename = 1;
  865.             ;
  866.     break;}
  867. case 17:
  868. { prefix = copy_string( nmstr ); ;
  869.     break;}
  870. case 18:
  871. { yyclass = copy_string( nmstr ); ;
  872.     break;}
  873. case 19:
  874. { scon_stk_ptr = yyvsp[-3]; ;
  875.     break;}
  876. case 20:
  877. { scon_stk_ptr = yyvsp[-3]; ;
  878.     break;}
  879. case 22:
  880. {
  881.             /* Initialize for a parse of one rule. */
  882.             trlcontxt = variable_trail_rule = varlength = false;
  883.             trailcnt = headcnt = rulelen = 0;
  884.             current_state_type = STATE_NORMAL;
  885.             previous_continued_action = continued_action;
  886.             in_rule = true;
  887.  
  888.             new_rule();
  889.             ;
  890.     break;}
  891. case 23:
  892. {
  893.             pat = yyvsp[0];
  894.             finish_rule( pat, variable_trail_rule,
  895.                 headcnt, trailcnt );
  896.  
  897.             if ( scon_stk_ptr > 0 )
  898.                 {
  899.                 for ( i = 1; i <= scon_stk_ptr; ++i )
  900.                     scbol[scon_stk[i]] =
  901.                         mkbranch( scbol[scon_stk[i]],
  902.                                 pat );
  903.                 }
  904.  
  905.             else
  906.                 {
  907.                 /* Add to all non-exclusive start conditions,
  908.                  * including the default (0) start condition.
  909.                  */
  910.  
  911.                 for ( i = 1; i <= lastsc; ++i )
  912.                     if ( ! scxclu[i] )
  913.                         scbol[i] = mkbranch( scbol[i],
  914.                                     pat );
  915.                 }
  916.  
  917.             if ( ! bol_needed )
  918.                 {
  919.                 bol_needed = true;
  920.  
  921.                 if ( performance_report > 1 )
  922.                     pinpoint_message(
  923.             "'^' operator results in sub-optimal performance" );
  924.                 }
  925.             ;
  926.     break;}
  927. case 24:
  928. {
  929.             pat = yyvsp[0];
  930.             finish_rule( pat, variable_trail_rule,
  931.                 headcnt, trailcnt );
  932.  
  933.             if ( scon_stk_ptr > 0 )
  934.                 {
  935.                 for ( i = 1; i <= scon_stk_ptr; ++i )
  936.                     scset[scon_stk[i]] =
  937.                         mkbranch( scset[scon_stk[i]],
  938.                                 pat );
  939.                 }
  940.  
  941.             else
  942.                 {
  943.                 for ( i = 1; i <= lastsc; ++i )
  944.                     if ( ! scxclu[i] )
  945.                         scset[i] =
  946.                             mkbranch( scset[i],
  947.                                 pat );
  948.                 }
  949.             ;
  950.     break;}
  951. case 25:
  952. {
  953.             if ( scon_stk_ptr > 0 )
  954.                 build_eof_action();
  955.     
  956.             else
  957.                 {
  958.                 /* This EOF applies to all start conditions
  959.                  * which don't already have EOF actions.
  960.                  */
  961.                 for ( i = 1; i <= lastsc; ++i )
  962.                     if ( ! sceof[i] )
  963.                         scon_stk[++scon_stk_ptr] = i;
  964.  
  965.                 if ( scon_stk_ptr == 0 )
  966.                     warn(
  967.             "all start conditions already have <<EOF>> rules" );
  968.  
  969.                 else
  970.                     build_eof_action();
  971.                 }
  972.             ;
  973.     break;}
  974. case 26:
  975. { synerr( "unrecognized rule" ); ;
  976.     break;}
  977. case 27:
  978. { yyval = scon_stk_ptr; ;
  979.     break;}
  980. case 28:
  981. { yyval = yyvsp[-2]; ;
  982.     break;}
  983. case 29:
  984. {
  985.             yyval = scon_stk_ptr;
  986.  
  987.             for ( i = 1; i <= lastsc; ++i )
  988.                 {
  989.                 int j;
  990.  
  991.                 for ( j = 1; j <= scon_stk_ptr; ++j )
  992.                     if ( scon_stk[j] == i )
  993.                         break;
  994.  
  995.                 if ( j > scon_stk_ptr )
  996.                     scon_stk[++scon_stk_ptr] = i;
  997.                 }
  998.             ;
  999.     break;}
  1000. case 30:
  1001. { yyval = scon_stk_ptr; ;
  1002.     break;}
  1003. case 33:
  1004. { synerr( "bad start condition list" ); ;
  1005.     break;}
  1006. case 34:
  1007. {
  1008.             if ( (scnum = sclookup( nmstr )) == 0 )
  1009.                 format_pinpoint_message(
  1010.                     "undeclared start condition %s",
  1011.                     nmstr );
  1012.             else
  1013.                 {
  1014.                 for ( i = 1; i <= scon_stk_ptr; ++i )
  1015.                     if ( scon_stk[i] == scnum )
  1016.                         {
  1017.                         format_warn(
  1018.                             "<%s> specified twice",
  1019.                             scname[scnum] );
  1020.                         break;
  1021.                         }
  1022.  
  1023.                 if ( i > scon_stk_ptr )
  1024.                     scon_stk[++scon_stk_ptr] = scnum;
  1025.                 }
  1026.             ;
  1027.     break;}
  1028. case 35:
  1029. {
  1030.             if ( transchar[lastst[yyvsp[0]]] != SYM_EPSILON )
  1031.                 /* Provide final transition \now/ so it
  1032.                  * will be marked as a trailing context
  1033.                  * state.
  1034.                  */
  1035.                 yyvsp[0] = link_machines( yyvsp[0],
  1036.                         mkstate( SYM_EPSILON ) );
  1037.  
  1038.             mark_beginning_as_normal( yyvsp[0] );
  1039.             current_state_type = STATE_NORMAL;
  1040.  
  1041.             if ( previous_continued_action )
  1042.                 {
  1043.                 /* We need to treat this as variable trailing
  1044.                  * context so that the backup does not happen
  1045.                  * in the action but before the action switch
  1046.                  * statement.  If the backup happens in the
  1047.                  * action, then the rules "falling into" this
  1048.                  * one's action will *also* do the backup,
  1049.                  * erroneously.
  1050.                  */
  1051.                 if ( ! varlength || headcnt != 0 )
  1052.                     warn(
  1053.         "trailing context made variable due to preceding '|' action" );
  1054.  
  1055.                 /* Mark as variable. */
  1056.                 varlength = true;
  1057.                 headcnt = 0;
  1058.                 }
  1059.  
  1060.             if ( lex_compat || (varlength && headcnt == 0) )
  1061.                 { /* variable trailing context rule */
  1062.                 /* Mark the first part of the rule as the
  1063.                  * accepting "head" part of a trailing
  1064.                  * context rule.
  1065.                  *
  1066.                  * By the way, we didn't do this at the
  1067.                  * beginning of this production because back
  1068.                  * then current_state_type was set up for a
  1069.                  * trail rule, and add_accept() can create
  1070.                  * a new state ...
  1071.                  */
  1072.                 add_accept( yyvsp[-1],
  1073.                     num_rules | YY_TRAILING_HEAD_MASK );
  1074.                 variable_trail_rule = true;
  1075.                 }
  1076.             
  1077.             else
  1078.                 trailcnt = rulelen;
  1079.  
  1080.             yyval = link_machines( yyvsp[-1], yyvsp[0] );
  1081.             ;
  1082.     break;}
  1083. case 36:
  1084. { synerr( "trailing context used twice" ); ;
  1085.     break;}
  1086. case 37:
  1087. {
  1088.             headcnt = 0;
  1089.             trailcnt = 1;
  1090.             rulelen = 1;
  1091.             varlength = false;
  1092.  
  1093.             current_state_type = STATE_TRAILING_CONTEXT;
  1094.  
  1095.             if ( trlcontxt )
  1096.                 {
  1097.                 synerr( "trailing context used twice" );
  1098.                 yyval = mkstate( SYM_EPSILON );
  1099.                 }
  1100.  
  1101.             else if ( previous_continued_action )
  1102.                 {
  1103.                 /* See the comment in the rule for "re2 re"
  1104.                  * above.
  1105.                  */
  1106.                 warn(
  1107.         "trailing context made variable due to preceding '|' action" );
  1108.  
  1109.                 varlength = true;
  1110.                 }
  1111.  
  1112.             if ( lex_compat || varlength )
  1113.                 {
  1114.                 /* Again, see the comment in the rule for
  1115.                  * "re2 re" above.
  1116.                  */
  1117.                 add_accept( yyvsp[-1],
  1118.                     num_rules | YY_TRAILING_HEAD_MASK );
  1119.                 variable_trail_rule = true;
  1120.                 }
  1121.  
  1122.             trlcontxt = true;
  1123.  
  1124.             eps = mkstate( SYM_EPSILON );
  1125.             yyval = link_machines( yyvsp[-1],
  1126.                 link_machines( eps, mkstate( '\n' ) ) );
  1127.             ;
  1128.     break;}
  1129. case 38:
  1130. {
  1131.             yyval = yyvsp[0];
  1132.  
  1133.             if ( trlcontxt )
  1134.                 {
  1135.                 if ( lex_compat || (varlength && headcnt == 0) )
  1136.                     /* Both head and trail are
  1137.                      * variable-length.
  1138.                      */
  1139.                     variable_trail_rule = true;
  1140.                 else
  1141.                     trailcnt = rulelen;
  1142.                 }
  1143.             ;
  1144.     break;}
  1145. case 39:
  1146. {
  1147.             varlength = true;
  1148.             yyval = mkor( yyvsp[-2], yyvsp[0] );
  1149.             ;
  1150.     break;}
  1151. case 40:
  1152. { yyval = yyvsp[0]; ;
  1153.     break;}
  1154. case 41:
  1155. {
  1156.             /* This rule is written separately so the
  1157.              * reduction will occur before the trailing
  1158.              * series is parsed.
  1159.              */
  1160.  
  1161.             if ( trlcontxt )
  1162.                 synerr( "trailing context used twice" );
  1163.             else
  1164.                 trlcontxt = true;
  1165.  
  1166.             if ( varlength )
  1167.                 /* We hope the trailing context is
  1168.                  * fixed-length.
  1169.                  */
  1170.                 varlength = false;
  1171.             else
  1172.                 headcnt = rulelen;
  1173.  
  1174.             rulelen = 0;
  1175.  
  1176.             current_state_type = STATE_TRAILING_CONTEXT;
  1177.             yyval = yyvsp[-1];
  1178.             ;
  1179.     break;}
  1180. case 42:
  1181. {
  1182.             /* This is where concatenation of adjacent patterns
  1183.              * gets done.
  1184.              */
  1185.             yyval = link_machines( yyvsp[-1], yyvsp[0] );
  1186.             ;
  1187.     break;}
  1188. case 43:
  1189. { yyval = yyvsp[0]; ;
  1190.     break;}
  1191. case 44:
  1192. {
  1193.             varlength = true;
  1194.  
  1195.             yyval = mkclos( yyvsp[-1] );
  1196.             ;
  1197.     break;}
  1198. case 45:
  1199. {
  1200.             varlength = true;
  1201.             yyval = mkposcl( yyvsp[-1] );
  1202.             ;
  1203.     break;}
  1204. case 46:
  1205. {
  1206.             varlength = true;
  1207.             yyval = mkopt( yyvsp[-1] );
  1208.             ;
  1209.     break;}
  1210. case 47:
  1211. {
  1212.             varlength = true;
  1213.  
  1214.             if ( yyvsp[-3] > yyvsp[-1] || yyvsp[-3] < 0 )
  1215.                 {
  1216.                 synerr( "bad iteration values" );
  1217.                 yyval = yyvsp[-5];
  1218.                 }
  1219.             else
  1220.                 {
  1221.                 if ( yyvsp[-3] == 0 )
  1222.                     {
  1223.                     if ( yyvsp[-1] <= 0 )
  1224.                         {
  1225.                         synerr(
  1226.                         "bad iteration values" );
  1227.                         yyval = yyvsp[-5];
  1228.                         }
  1229.                     else
  1230.                         yyval = mkopt(
  1231.                             mkrep( yyvsp[-5], 1, yyvsp[-1] ) );
  1232.                     }
  1233.                 else
  1234.                     yyval = mkrep( yyvsp[-5], yyvsp[-3], yyvsp[-1] );
  1235.                 }
  1236.             ;
  1237.     break;}
  1238. case 48:
  1239. {
  1240.             varlength = true;
  1241.  
  1242.             if ( yyvsp[-2] <= 0 )
  1243.                 {
  1244.                 synerr( "iteration value must be positive" );
  1245.                 yyval = yyvsp[-4];
  1246.                 }
  1247.  
  1248.             else
  1249.                 yyval = mkrep( yyvsp[-4], yyvsp[-2], INFINITY );
  1250.             ;
  1251.     break;}
  1252. case 49:
  1253. {
  1254.             /* The singleton could be something like "(foo)",
  1255.              * in which case we have no idea what its length
  1256.              * is, so we punt here.
  1257.              */
  1258.             varlength = true;
  1259.  
  1260.             if ( yyvsp[-1] <= 0 )
  1261.                 {
  1262.                 synerr( "iteration value must be positive" );
  1263.                 yyval = yyvsp[-3];
  1264.                 }
  1265.  
  1266.             else
  1267.                 yyval = link_machines( yyvsp[-3],
  1268.                         copysingl( yyvsp[-3], yyvsp[-1] - 1 ) );
  1269.             ;
  1270.     break;}
  1271. case 50:
  1272. {
  1273.             if ( ! madeany )
  1274.                 {
  1275.                 /* Create the '.' character class. */
  1276.                 anyccl = cclinit();
  1277.                 ccladd( anyccl, '\n' );
  1278.                 cclnegate( anyccl );
  1279.  
  1280.                 if ( useecs )
  1281.                     mkeccl( ccltbl + cclmap[anyccl],
  1282.                         ccllen[anyccl], nextecm,
  1283.                         ecgroup, csize, csize );
  1284.  
  1285.                 madeany = true;
  1286.                 }
  1287.  
  1288.             ++rulelen;
  1289.  
  1290.             yyval = mkstate( -anyccl );
  1291.             ;
  1292.     break;}
  1293. case 51:
  1294. {
  1295.             if ( ! cclsorted )
  1296.                 /* Sort characters for fast searching.  We
  1297.                  * use a shell sort since this list could
  1298.                  * be large.
  1299.                  */
  1300.                 cshell( ccltbl + cclmap[yyvsp[0]], ccllen[yyvsp[0]], true );
  1301.  
  1302.             if ( useecs )
  1303.                 mkeccl( ccltbl + cclmap[yyvsp[0]], ccllen[yyvsp[0]],
  1304.                     nextecm, ecgroup, csize, csize );
  1305.  
  1306.             ++rulelen;
  1307.  
  1308.             yyval = mkstate( -yyvsp[0] );
  1309.             ;
  1310.     break;}
  1311. case 52:
  1312. {
  1313.             ++rulelen;
  1314.  
  1315.             yyval = mkstate( -yyvsp[0] );
  1316.             ;
  1317.     break;}
  1318. case 53:
  1319. { yyval = yyvsp[-1]; ;
  1320.     break;}
  1321. case 54:
  1322. { yyval = yyvsp[-1]; ;
  1323.     break;}
  1324. case 55:
  1325. {
  1326.             ++rulelen;
  1327.  
  1328.             if ( caseins && yyvsp[0] >= 'A' && yyvsp[0] <= 'Z' )
  1329.                 yyvsp[0] = clower( yyvsp[0] );
  1330.  
  1331.             yyval = mkstate( yyvsp[0] );
  1332.             ;
  1333.     break;}
  1334. case 56:
  1335. { yyval = yyvsp[-1]; ;
  1336.     break;}
  1337. case 57:
  1338. {
  1339.             cclnegate( yyvsp[-1] );
  1340.             yyval = yyvsp[-1];
  1341.             ;
  1342.     break;}
  1343. case 58:
  1344. {
  1345.             if ( caseins )
  1346.                 {
  1347.                 if ( yyvsp[-2] >= 'A' && yyvsp[-2] <= 'Z' )
  1348.                     yyvsp[-2] = clower( yyvsp[-2] );
  1349.                 if ( yyvsp[0] >= 'A' && yyvsp[0] <= 'Z' )
  1350.                     yyvsp[0] = clower( yyvsp[0] );
  1351.                 }
  1352.  
  1353.             if ( yyvsp[-2] > yyvsp[0] )
  1354.                 synerr( "negative range in character class" );
  1355.  
  1356.             else
  1357.                 {
  1358.                 for ( i = yyvsp[-2]; i <= yyvsp[0]; ++i )
  1359.                     ccladd( yyvsp[-3], i );
  1360.  
  1361.                 /* Keep track if this ccl is staying in
  1362.                  * alphabetical order.
  1363.                  */
  1364.                 cclsorted = cclsorted && (yyvsp[-2] > lastchar);
  1365.                 lastchar = yyvsp[0];
  1366.                 }
  1367.  
  1368.             yyval = yyvsp[-3];
  1369.             ;
  1370.     break;}
  1371. case 59:
  1372. {
  1373.             if ( caseins && yyvsp[0] >= 'A' && yyvsp[0] <= 'Z' )
  1374.                 yyvsp[0] = clower( yyvsp[0] );
  1375.  
  1376.             ccladd( yyvsp[-1], yyvsp[0] );
  1377.             cclsorted = cclsorted && (yyvsp[0] > lastchar);
  1378.             lastchar = yyvsp[0];
  1379.             yyval = yyvsp[-1];
  1380.             ;
  1381.     break;}
  1382. case 60:
  1383. {
  1384.             /* Too hard to properly maintain cclsorted. */
  1385.             cclsorted = false;
  1386.             yyval = yyvsp[-1];
  1387.             ;
  1388.     break;}
  1389. case 61:
  1390. {
  1391.             cclsorted = true;
  1392.             lastchar = 0;
  1393.             currccl = yyval = cclinit();
  1394.             ;
  1395.     break;}
  1396. case 62:
  1397. { CCL_EXPR(isalnum) ;
  1398.     break;}
  1399. case 63:
  1400. { CCL_EXPR(isalpha) ;
  1401.     break;}
  1402. case 64:
  1403. { CCL_EXPR(IS_BLANK) ;
  1404.     break;}
  1405. case 65:
  1406. { CCL_EXPR(iscntrl) ;
  1407.     break;}
  1408. case 66:
  1409. { CCL_EXPR(isdigit) ;
  1410.     break;}
  1411. case 67:
  1412. { CCL_EXPR(isgraph) ;
  1413.     break;}
  1414. case 68:
  1415. { CCL_EXPR(islower) ;
  1416.     break;}
  1417. case 69:
  1418. { CCL_EXPR(isprint) ;
  1419.     break;}
  1420. case 70:
  1421. { CCL_EXPR(ispunct) ;
  1422.     break;}
  1423. case 71:
  1424. { CCL_EXPR(isspace) ;
  1425.     break;}
  1426. case 72:
  1427. {
  1428.                 if ( caseins )
  1429.                     CCL_EXPR(islower)
  1430.                 else
  1431.                     CCL_EXPR(isupper)
  1432.                 ;
  1433.     break;}
  1434. case 73:
  1435. { CCL_EXPR(isxdigit) ;
  1436.     break;}
  1437. case 74:
  1438. {
  1439.             if ( caseins && yyvsp[0] >= 'A' && yyvsp[0] <= 'Z' )
  1440.                 yyvsp[0] = clower( yyvsp[0] );
  1441.  
  1442.             ++rulelen;
  1443.  
  1444.             yyval = link_machines( yyvsp[-1], mkstate( yyvsp[0] ) );
  1445.             ;
  1446.     break;}
  1447. case 75:
  1448. { yyval = mkstate( SYM_EPSILON ); ;
  1449.     break;}
  1450. }
  1451.    /* the action file gets copied in in place of this dollarsign */
  1452.  
  1453.  
  1454.   yyvsp -= yylen;
  1455.   yyssp -= yylen;
  1456. #ifdef YYLSP_NEEDED
  1457.   yylsp -= yylen;
  1458. #endif
  1459.  
  1460. #if YYDEBUG != 0
  1461.   if (yydebug)
  1462.     {
  1463.       short *ssp1 = yyss - 1;
  1464.       fprintf (stderr, "state stack now");
  1465.       while (ssp1 != yyssp)
  1466.     fprintf (stderr, " %d", *++ssp1);
  1467.       fprintf (stderr, "\n");
  1468.     }
  1469. #endif
  1470.  
  1471.   *++yyvsp = yyval;
  1472.  
  1473. #ifdef YYLSP_NEEDED
  1474.   yylsp++;
  1475.   if (yylen == 0)
  1476.     {
  1477.       yylsp->first_line = yylloc.first_line;
  1478.       yylsp->first_column = yylloc.first_column;
  1479.       yylsp->last_line = (yylsp-1)->last_line;
  1480.       yylsp->last_column = (yylsp-1)->last_column;
  1481.       yylsp->text = 0;
  1482.     }
  1483.   else
  1484.     {
  1485.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  1486.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  1487.     }
  1488. #endif
  1489.  
  1490.   /* Now "shift" the result of the reduction.
  1491.      Determine what state that goes to,
  1492.      based on the state we popped back to
  1493.      and the rule number reduced by.  */
  1494.  
  1495.   yyn = yyr1[yyn];
  1496.  
  1497.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  1498.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  1499.     yystate = yytable[yystate];
  1500.   else
  1501.     yystate = yydefgoto[yyn - YYNTBASE];
  1502.  
  1503.   goto yynewstate;
  1504.  
  1505. yyerrlab:   /* here on detecting error */
  1506.  
  1507.   if (! yyerrstatus)
  1508.     /* If not already recovering from an error, report this error.  */
  1509.     {
  1510.       ++yynerrs;
  1511.  
  1512. #ifdef YYERROR_VERBOSE
  1513.       yyn = yypact[yystate];
  1514.  
  1515.       if (yyn > YYFLAG && yyn < YYLAST)
  1516.     {
  1517.       int size = 0;
  1518.       char *msg;
  1519.       int x, count;
  1520.  
  1521.       count = 0;
  1522.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  1523.       for (x = (yyn < 0 ? -yyn : 0);
  1524.            x < (sizeof(yytname) / sizeof(char *)); x++)
  1525.         if (yycheck[x + yyn] == x)
  1526.           size += strlen(yytname[x]) + 15, count++;
  1527.       msg = (char *) malloc(size + 15);
  1528.       if (msg != 0)
  1529.         {
  1530.           strcpy(msg, "parse error");
  1531.  
  1532.           if (count < 5)
  1533.         {
  1534.           count = 0;
  1535.           for (x = (yyn < 0 ? -yyn : 0);
  1536.                x < (sizeof(yytname) / sizeof(char *)); x++)
  1537.             if (yycheck[x + yyn] == x)
  1538.               {
  1539.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  1540.             strcat(msg, yytname[x]);
  1541.             strcat(msg, "'");
  1542.             count++;
  1543.               }
  1544.         }
  1545.           yyerror(msg);
  1546.           free(msg);
  1547.         }
  1548.       else
  1549.         yyerror ("parse error; also virtual memory exceeded");
  1550.     }
  1551.       else
  1552. #endif /* YYERROR_VERBOSE */
  1553.     yyerror("parse error");
  1554.     }
  1555.  
  1556.   goto yyerrlab1;
  1557. yyerrlab1:   /* here on error raised explicitly by an action */
  1558.  
  1559.   if (yyerrstatus == 3)
  1560.     {
  1561.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  1562.  
  1563.       /* return failure if at end of input */
  1564.       if (yychar == YYEOF)
  1565.     YYABORT;
  1566.  
  1567. #if YYDEBUG != 0
  1568.       if (yydebug)
  1569.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  1570. #endif
  1571.  
  1572.       yychar = YYEMPTY;
  1573.     }
  1574.  
  1575.   /* Else will try to reuse lookahead token
  1576.      after shifting the error token.  */
  1577.  
  1578.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  1579.  
  1580.   goto yyerrhandle;
  1581.  
  1582. yyerrdefault:  /* current state does not do anything special for the error token. */
  1583.  
  1584. #if 0
  1585.   /* This is wrong; only states that explicitly want error tokens
  1586.      should shift them.  */
  1587.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  1588.   if (yyn) goto yydefault;
  1589. #endif
  1590.  
  1591. yyerrpop:   /* pop the current state because it cannot handle the error token */
  1592.  
  1593.   if (yyssp == yyss) YYABORT;
  1594.   yyvsp--;
  1595.   yystate = *--yyssp;
  1596. #ifdef YYLSP_NEEDED
  1597.   yylsp--;
  1598. #endif
  1599.  
  1600. #if YYDEBUG != 0
  1601.   if (yydebug)
  1602.     {
  1603.       short *ssp1 = yyss - 1;
  1604.       fprintf (stderr, "Error: state stack now");
  1605.       while (ssp1 != yyssp)
  1606.     fprintf (stderr, " %d", *++ssp1);
  1607.       fprintf (stderr, "\n");
  1608.     }
  1609. #endif
  1610.  
  1611. yyerrhandle:
  1612.  
  1613.   yyn = yypact[yystate];
  1614.   if (yyn == YYFLAG)
  1615.     goto yyerrdefault;
  1616.  
  1617.   yyn += YYTERROR;
  1618.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  1619.     goto yyerrdefault;
  1620.  
  1621.   yyn = yytable[yyn];
  1622.   if (yyn < 0)
  1623.     {
  1624.       if (yyn == YYFLAG)
  1625.     goto yyerrpop;
  1626.       yyn = -yyn;
  1627.       goto yyreduce;
  1628.     }
  1629.   else if (yyn == 0)
  1630.     goto yyerrpop;
  1631.  
  1632.   if (yyn == YYFINAL)
  1633.     YYACCEPT;
  1634.  
  1635. #if YYDEBUG != 0
  1636.   if (yydebug)
  1637.     fprintf(stderr, "Shifting error token, ");
  1638. #endif
  1639.  
  1640.   *++yyvsp = yylval;
  1641. #ifdef YYLSP_NEEDED
  1642.   *++yylsp = yylloc;
  1643. #endif
  1644.  
  1645.   yystate = yyn;
  1646.   goto yynewstate;
  1647. }
  1648.  
  1649.  
  1650.  
  1651. /* build_eof_action - build the "<<EOF>>" action for the active start
  1652.  *                    conditions
  1653.  */
  1654.  
  1655. void build_eof_action()
  1656.     {
  1657.     register int i;
  1658.     char action_text[MAXLINE];
  1659.  
  1660.     for ( i = 1; i <= scon_stk_ptr; ++i )
  1661.         {
  1662.         if ( sceof[scon_stk[i]] )
  1663.             format_pinpoint_message(
  1664.                 "multiple <<EOF>> rules for start condition %s",
  1665.                 scname[scon_stk[i]] );
  1666.  
  1667.         else
  1668.             {
  1669.             sceof[scon_stk[i]] = true;
  1670.             sprintf( action_text, "case YY_STATE_EOF(%s):\n",
  1671.                 scname[scon_stk[i]] );
  1672.             add_action( action_text );
  1673.             }
  1674.         }
  1675.  
  1676.     line_directive_out( (FILE *) 0, 1 );
  1677.  
  1678.     /* This isn't a normal rule after all - don't count it as
  1679.      * such, so we don't have any holes in the rule numbering
  1680.      * (which make generating "rule can never match" warnings
  1681.      * more difficult.
  1682.      */
  1683.     --num_rules;
  1684.     ++num_eof_rules;
  1685.     }
  1686.  
  1687.  
  1688. /* format_synerr - write out formatted syntax error */
  1689.  
  1690. void format_synerr( msg, arg )
  1691. char msg[], arg[];
  1692.     {
  1693.     char errmsg[MAXLINE];
  1694.  
  1695.     (void) sprintf( errmsg, msg, arg );
  1696.     synerr( errmsg );
  1697.     }
  1698.  
  1699.  
  1700. /* synerr - report a syntax error */
  1701.  
  1702. void synerr( str )
  1703. char str[];
  1704.     {
  1705.     syntaxerror = true;
  1706.     pinpoint_message( str );
  1707.     }
  1708.  
  1709.  
  1710. /* format_warn - write out formatted warning */
  1711.  
  1712. void format_warn( msg, arg )
  1713. char msg[], arg[];
  1714.     {
  1715.     char warn_msg[MAXLINE];
  1716.  
  1717.     (void) sprintf( warn_msg, msg, arg );
  1718.     warn( warn_msg );
  1719.     }
  1720.  
  1721.  
  1722. /* warn - report a warning, unless -w was given */
  1723.  
  1724. void warn( str )
  1725. char str[];
  1726.     {
  1727.     line_warning( str, linenum );
  1728.     }
  1729.  
  1730. /* format_pinpoint_message - write out a message formatted with one string,
  1731.  *                 pinpointing its location
  1732.  */
  1733.  
  1734. void format_pinpoint_message( msg, arg )
  1735. char msg[], arg[];
  1736.     {
  1737.     char errmsg[MAXLINE];
  1738.  
  1739.     (void) sprintf( errmsg, msg, arg );
  1740.     pinpoint_message( errmsg );
  1741.     }
  1742.  
  1743.  
  1744. /* pinpoint_message - write out a message, pinpointing its location */
  1745.  
  1746. void pinpoint_message( str )
  1747. char str[];
  1748.     {
  1749.     line_pinpoint( str, linenum );
  1750.     }
  1751.  
  1752.  
  1753. /* line_warning - report a warning at a given line, unless -w was given */
  1754.  
  1755. void line_warning( str, line )
  1756. char str[];
  1757. int line;
  1758.     {
  1759.     char warning[MAXLINE];
  1760.  
  1761.     if ( ! nowarn )
  1762.         {
  1763.         sprintf( warning, "warning, %s", str );
  1764.         line_pinpoint( warning, line );
  1765.         }
  1766.     }
  1767.  
  1768.  
  1769. /* line_pinpoint - write out a message, pinpointing it at the given line */
  1770.  
  1771. void line_pinpoint( str, line )
  1772. char str[];
  1773. int line;
  1774.     {
  1775.     fprintf( stderr, "\"%s\", line %d: %s\n", infilename, line, str );
  1776.     }
  1777.  
  1778.  
  1779. /* yyerror - eat up an error message from the parser;
  1780.  *         currently, messages are ignore
  1781.  */
  1782.  
  1783. void yyerror( msg )
  1784. char msg[];
  1785.     {
  1786.     }
  1787.